home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / compuserve-file-archive / 04 geoProgramming / HEXCLC.SDA / INFORMATION FILE (.txt) < prev    next >
Encoding:
GEOS ConVerT  |  2019-04-13  |  3.6 KB  |  54 lines

  1. Information file'
  2. SEQ formatted GEOS file V1.0
  3. Olivetti PR2300
  4. OP V2.0 or higher
  5. #$Main
  6. BLASTER'S CONVERTER V2.5
  7. ASCII
  8. UTILITY
  9. Write Image V1.1
  10. Red Storm
  11. geoWrite    V1.1
  12.   This file was created with
  13. Wrong is Write.
  14.   Written by Joe Buckley.
  15. Bill Sharp Computing would like to announce a new product for the GEOS
  16. @ Environment, called geoCOPE.
  17. geoCOPE is a package containing an editor and assembler designed for the machine language programmer.  
  18. COPE-Editor:
  19.     A text based editor designed to facilitate the programmer in writing source code.  COPE-Editor allows quick movement within the source code such as: Page-Up, Page-Down, Goto Top-of-Document, Goto Bottom-of-Document.  These functions are selected through the menu or from the keyboard.
  20.     COPE-Editor also offers a complete selection of search functions.  You can Find and Replace phrases within your source code.  Cut, Copy and Paste is supported as well.  With the TextManager Desk Accessory, you can keep frequently used code grouped for easy access.  COPE-Editor also allows importing text from other assemblers.  It will convert the text from MADS assemblers for example.
  21. COPE-Assembler:
  22.     Supports the complete 6502 assembly language mnemonics and addressing modes.  Source files from the COPE-Editor can be linked together with the Include pseudo op.  The FileStart, InitProg, Authors Name, Permanent FileName and Icon shape can be changed from within the source code.  
  23.     COPE-Assembler allows 32 character labels and is case sensitive to Upper/Lowercase characters.  Complete arithmetic and logic operators are included.
  24. Benefits:
  25.     geoCOPE operates entirely within the GEOS
  26. @ environment.  The editor and assember are complete geos programs themselves.  Coverting object files to a GEOS format is no longer necessary.  Neither is time wasted in booting up the GEOS system to test your most recent changes.  You will already be in it.
  27.     geoCOPE is developed and assembler with the COPE editor/assembler package.
  28. Limits:
  29.     Currently, geoCOPE does not support creating VLIR application programs and maximun assembled program is limited to 8K.  Still, thats enought room to write an assembler and editor.
  30. geoCOPE is available now by mail order only.  It is priced at $19.95.
  31.   Order from:
  32. Bill Sharp Computing
  33. P.O. Box 7533
  34. Waco, TX 76714
  35. Arithmetic Operations 
  36.  The four basic arithmetic operations and three logic operations are denoted:
  37.     *  Multiplication
  38.     /   Division
  39.     +   Addition
  40.     -    Subtraction
  41.     &  Logical AND   (Shift-6) 
  42.     ^   Logical EOR  (Exclusive OR)  (press the up-arrow key for this symbol).
  43.     |    Logical OR    (press the C= key and the up-arrow key for this symbol).
  44.     Hierarchy of arithmetic and logical operations:
  45.             
  46. @Highest
  47.         *  /    Multiplication and Division
  48.         +  -      Addition  and Subtraction
  49.            &       Logical AND
  50.             ^       Logical XOR
  51.              |           Logical OR
  52.                   
  53. @Lowest
  54.